SUPPORT / SAMPLES & SAS NOTES
 

Support

Problem Note 48014: The EXCEL engine ignores blanks when you use the WHERE clause

DetailsAboutRate It

Blank values are ignored in a WHERE clause when you are using the SQL procedure with an Excel database.


Sample code is shown below:
libname userinfo excel "c:\myworkbook.xlsx" proc sql; create table test as select * from userinfo.'mysheet$'n where myvar eq '20'x ; quit;

The problem occurs because the EXCEL engine interprets blanks as NULLs in PROC SQL itself.

To circumvent the problem, change the expression to "is NULL," as shown below:

libname userinfo excel "c:\myworkbook.xlsx" proc sql; create table test as select * from userinfo.'mysheet$'n where myvar is NULL ; quit;
You can also import the Excel worksheet into SAS® and use the original WHERE expression against the SAS data set. The SAS data set stores the character blank values as blanks rather than NULLs.

Operating System and Release Information

Product FamilyProductSystemSAS Release
ReportedFixed*
SAS SystemSAS/ACCESS Interface to PC FilesMicrosoft® Windows® for 64-Bit Itanium-based Systems9.2 TS2M09.4 TS1M0
Microsoft Windows Server 2003 Datacenter 64-bit Edition9.2 TS2M09.4 TS1M0
Microsoft Windows Server 2003 Enterprise 64-bit Edition9.2 TS2M09.4 TS1M0
Microsoft Windows XP 64-bit Edition9.2 TS2M09.4 TS1M0
Microsoft® Windows® for x649.2 TS2M09.4 TS1M0
Microsoft Windows Server 2003 Datacenter Edition9.2 TS2M09.4 TS1M0
Microsoft Windows Server 2003 Enterprise Edition9.2 TS2M09.4 TS1M0
Microsoft Windows Server 2003 Standard Edition9.2 TS2M09.4 TS1M0
Microsoft Windows Server 2003 for x649.2 TS2M09.4 TS1M0
Microsoft Windows Server 2008 for x649.2 TS2M09.4 TS1M0
Microsoft Windows XP Professional9.2 TS2M09.4 TS1M0
Windows Vista9.2 TS2M09.4 TS1M0
Windows Vista for x649.2 TS2M09.4 TS1M0
* For software releases that are not yet generally available, the Fixed Release is the software release in which the problem is planned to be fixed.